StoredProcedureEntity.fromJson constructor

StoredProcedureEntity.fromJson(
  1. Map json_
)

Implementation

StoredProcedureEntity.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?,
    );