RemoteIssueLinkRequest.fromJson constructor
Implementation
factory RemoteIssueLinkRequest.fromJson(Map<String, Object?> json) {
return RemoteIssueLinkRequest(
application: json[r'application'] != null
? Application.fromJson(json[r'application']! as Map<String, Object?>)
: null,
globalId: json[r'globalId'] as String?,
object: RemoteObject.fromJson(
json[r'object'] as Map<String, Object?>? ?? const {}),
relationship: json[r'relationship'] as String?,
);
}