CopyLogEntriesResponse.fromJson constructor

CopyLogEntriesResponse.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory CopyLogEntriesResponse.fromJson(Map<String, dynamic> json) {
  return CopyLogEntriesResponse(
    logEntriesCopiedCount: decodeInt64(json['logEntriesCopiedCount']) ?? 0,
  );
}