>>> help(mathutils.geometry.normal) gives instructions about using the function.
Example usage is this
import bpy
from mathutils import Vector, geometry
co_1 = Vector((-1.3349171876907349, -0.4734605848789215, 0.3062398433685303))
co_2 = Vector((0.6650824546813965, -0.4734615385532379, 0.3062398433685303))
co_3 = Vector((0.6698348522186279, 0.9469220638275146, -0.6124801635742188))
# presume this to be a clockwise sequence
print(geometry.normal(co_1,co_2,co_3))
# note the different result from counter clockwise coordinate sequence
print(geometry.normal(co_3,co_2,co_1))