RelationshipAttributes.fromJson constructor

RelationshipAttributes.fromJson(
  1. Map json_
)

Implementation

RelationshipAttributes.fromJson(core.Map json_)
  : this(
      action: json_['action'] as core.String?,
      sourceResourceType: json_['sourceResourceType'] as core.String?,
      targetResourceType: json_['targetResourceType'] as core.String?,
      type: json_['type'] as core.String?,
    );