FunctionEntity.fromJson constructor

FunctionEntity.fromJson(
  1. Map json_
)

Implementation

FunctionEntity.fromJson(core.Map json_)
  : this(
      customFeatures: json_.containsKey('customFeatures')
          ? json_['customFeatures'] as core.Map<core.String, core.dynamic>
          : null,
      sqlCode: json_['sqlCode'] as core.String?,
    );